projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9f89ea1
)
Fix last change in etags.c, which failed the test suite
author
Eli Zaretskii
<eliz@gnu.org>
Sun, 24 May 2015 07:19:36 +0000
(10:19 +0300)
committer
Eli Zaretskii
<eliz@gnu.org>
Sun, 24 May 2015 07:19:36 +0000
(10:19 +0300)
* lib-src/etags.c (intoken): Add '$' to the set, as it was there
before the last change.
lib-src/etags.c
patch
|
blob
|
history
diff --git
a/lib-src/etags.c
b/lib-src/etags.c
index facb462f67b8c906244a1627422939434f1e69f1..f049f42b4429d40ae3cbf6f73878e942896cdcdc 100644
(file)
--- a/
lib-src/etags.c
+++ b/
lib-src/etags.c
@@
-194,6
+194,7
@@
static bool
intoken (unsigned char c)
{
static bool const table[UCHAR_MAX + 1] = {
+ ['$']=1,
['0']=1, ['1']=1, ['2']=1, ['3']=1, ['4']=1,
['5']=1, ['6']=1, ['7']=1, ['8']=1, ['9']=1,
['A']=1, ['B']=1, ['C']=1, ['D']=1, ['E']=1, ['F']=1, ['G']=1, ['H']=1,